[DllImport("user32.dll")]
static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
enum GetWindow_Cmd {
First = 0,
Last = 1,
Next = 2,
Prev = 3,
Owner = 4,
Child = 5
}
Declare Auto Function GetWindow Lib "user32.dll" ( _
ByVal hWnd As IntPtr, ByVal uCmd As UInt32) As IntPtr
None
Please add some!
Please add some!
Do you know one? Please contribute it!